home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_04 / 1004110c < prev    next >
Encoding:
Text File  |  1995-11-01  |  196 b   |  11 lines

  1.  
  2. void get_low_high(int a, int b, int c, int *low, int *high)
  3.      {
  4.      *low = (a < b) ? a : b;
  5.      if (c < *low) *low = c;
  6.      *high = (a > b) ? a : b;
  7.      if (c > *high) *high = c;
  8.      }
  9.  
  10.  
  11.